home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gnuchess.lha / DOCUMENTATION / #ChangeLog# next >
Text File  |  1990-05-13  |  4KB  |  94 lines

  1.  
  2.  
  3. Thu Mar  8 09:11:28 1990  Hans-Erik Sandstr|m  (hes at orsa1)
  4.     * The persistent hash table seems to work now. There are still some
  5.     problems using it on a heterogenous network.
  6.  
  7. Sun Mar  4 14:44:44 1990  Hans Eric Sandstr|m  (hes at orsa)
  8.     * I am working on a persistent hash table. Currenly a 10Mb file
  9.     with 262144 entrys. Stuart just asked me to spilt the posdata
  10.     array to make gnuchess work better on a PC, so I did that.
  11.     I have also tried to properly fix the bug that caused gnuchess
  12.     to report mate prematurely. This, I hope, will also improve the
  13.     search.
  14.  
  15. Tue Feb 27 18:27:23 1990  Hans Eric Sandstr|m  (hes at davidson.log-sv.se)
  16.     * used protoize to make a function prototyped version of gnuchess.
  17.     this means that I have to use unprotoize before 'make distribution'
  18.     to make a more portable K&R version.
  19.     removed a ZeroTTable so now the hashtable is kept between moves.
  20.  
  21. Sat Feb 24 13:14:14 1990  Hans Eric Sandstr|m  (hes at orsa)
  22.     * Added a test to detect hash table collisions, define HASHTEST.
  23.     I also removed     the times calls since there is no sense in
  24.     measuring cpu time when    wallclock time is all that counts when
  25.     playing chess.
  26.  
  27. Fri Feb 23 17:25:37 1990  Hans Eric Sandstr|m  (hes at orsa)
  28.     * Compiled gnuchess with gcc1.37 -Wall and got lots of
  29.     implicit decaration warnings. Solved most of these by adding
  30.     external declarations in gnuchess.h.
  31.  
  32. Wed Feb 21 17:41:28 1990 Jouko Holopainen (jhol@tolsun.oulu.fi) 
  33.     * Contributed his code for ECO move entry (again!)
  34.     and a file ansidsp.c (A msdos port of uxdsp.c).
  35.     I(hes) started a merge of ansidsp.c and uxdsp.c.
  36.  
  37. February 8, 1990 -- Hans Eric Sandstrom (hes@log-sv.se)
  38.     Changed the transpositon table to allow 65536 positions per player.
  39.     This means a 1.3 Mbyte hash table. Introduced simple rehashing. And
  40.     also made setting ttable 0 exclude all transposition code from
  41.     gnuchess (for machines with very little memory).
  42.  
  43.  
  44. February 3, 1990 -- Tom Vijlbrief (tnosoes!tom@nluug.n)
  45.     Contributed code to fix undo of promotions.
  46.     And a bugfix RMBLTY was to small.
  47.  
  48.  
  49. Januari 27, 1990 -- Hans Eric Sandstrom (hes@log-sv.se)
  50.     Fixed nuxdsp.c to work with my changes (Saved games format)
  51.  
  52.  
  53. Januari 26, 1990 -- Hans Eric Sandstrom (hes@log-sv.se)
  54.     Verified that the underpromotion routines works.
  55.     Found and fixed the bug that caused gnuchess to report mate
  56.     and draw prematurely.
  57.  
  58.  
  59. Januari 25, 1990 -- Hans Eric Sandstrom (hes@log-sv.se)
  60.     Received the underpromotion additions from jhol@tolsun.oulu.fi
  61.     Made some optimizations in trapped and KingScan.
  62.     Added more comments on how to improve the search.
  63.     Added info on usage of the array Tree in post mode.
  64.     Changed the index in the transposition table to unsigned short to
  65.     allow a hash table of size 65536.
  66.  
  67.  
  68. Januari 11, 1990 -- Hans Eric Sandstrom (hes@log-sv.se)
  69.     Formatted gnuchess according to GNU standards with indent.
  70.  
  71.  
  72. Januari 9, 1990 -- Hans Eric Sandstrom (hes@log-sv.se)
  73.     Inserted a missing comma in KTHRT.
  74.     Removed mvstr1[5],mvstr2[5] from gnuchess.c, they are only used in the
  75.     user-interface routines uxdsp.c nondsp.c anyway.
  76.     Rewrote algbr to generate move strings for underpromotion.
  77.     (ph8k or h7h8k)
  78.     Some optimizations in CaptureList.
  79.     Changed row, column and locn to macros.
  80.     Made memset default and introduced a switch NOMEMSET for
  81.     computers without memset or where memset is a speed penality.
  82.     I tested this on:
  83.         Sparc        - no change
  84.         DECstation    - no change
  85.         Sun3/60        - 4% speed improvment.
  86.     Changed + to | in some bit-field manipulations.
  87.     Fixed the castle-with-moved-rook-bug, removed kingmoved and introduced
  88.     an array Mvboard to keep track on how many times we have moved from a
  89.     particular square.
  90.     Fixed the check for zero division in Time controls.
  91.     Added BINDIR and LIBDIR in the Makefile to set where gnuchess and
  92.     gnuchess.book gets installed.
  93.     All I have to do now is to test if all this works (-:
  94.